home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / phpMyAdmin / server_export.php < prev    next >
Encoding:
PHP Script  |  2005-11-23  |  1.7 KB  |  63 lines

  1. <?php
  2. /* $Id: server_export.php,v 2.8 2005/11/24 09:12:16 nijel Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5. /**
  6.  * Does the common work
  7.  */
  8. require_once('./libraries/common.lib.php');
  9.  
  10. $js_to_run = 'functions.js';
  11.  
  12. /**
  13.  * Displays the links
  14.  */
  15. require('./libraries/server_links.inc.php');
  16.  
  17. /**
  18.  * Gets the databases list - if it has not been built yet
  19.  */
  20. if ($server > 0 && empty($dblist)) {
  21.     PMA_availableDatabases();
  22. }
  23. ?>
  24.  
  25.  
  26. <!-- Dump of a server -->
  27. <?php 
  28. $export_page_title = $strViewDumpDatabases . "\n";
  29. $multi_values = '<div align="center"><select name="db_select[]" size="6" multiple="multiple">';
  30. $multi_values .= "\n";
  31.  
  32. foreach ($dblist AS $current_db) {
  33.     if (!empty($selectall) || (isset($tmp_select) && strpos(' ' . $tmp_select, '|' . $current_db . '|'))) {
  34.         $is_selected = ' selected="selected"';
  35.     } else {
  36.         $is_selected = '';
  37.     }
  38.     $current_db   = htmlspecialchars($current_db);
  39.     $multi_values .= '                <option value="' . $current_db . '"' . $is_selected . '>' . $current_db . '</option>' . "\n";
  40. } // end while
  41. $multi_values .= "\n";
  42. $multi_values .= '</select></div>';
  43.  
  44. $checkall_url = 'server_export.php?'
  45.               . PMA_generate_common_url()
  46.               . '&goto=db_details_export.php';
  47.  
  48. $multi_values .= '<br />
  49.         <a href="' . $checkall_url . '&selectall=1" onclick="setSelectOptions(\'dump\', \'db_select[]\', true); return false;">' . $strSelectAll . '</a>
  50.         /
  51.         <a href="' . $checkall_url . '" onclick="setSelectOptions(\'dump\', \'db_select[]\', false); return false;">' . $strUnselectAll . '</a>
  52.         <br /><br />';
  53.  
  54. $export_type = 'server';
  55. require_once('./libraries/display_export.lib.php');
  56.  
  57.  
  58. /**
  59.  * Displays the footer
  60.  */
  61. require_once('./libraries/footer.inc.php');
  62. ?>
  63.